home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ObjectEditorEx.wo / ObjectEditorEx.wod < prev    next >
Encoding:
Text File  |  1996-03-11  |  810 b   |  44 lines

  1. ////////////////////////
  2. //  ObjectEditor
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7.  
  8. SubmitEdits: WOSubmitButton {
  9.     action = processForm;
  10.     value = "Submit Changes";
  11. };
  12.  
  13. MyObjectEditor: ObjectEditor {
  14.     targetObject = localObject;
  15.     labelArray = localLabelArray;
  16.     keyArray = localKeyArray;
  17.     isEditable = isEditable;
  18.     cellPadding = cellPadding;
  19.     cellSpacing = 1;
  20.     borderSize = 3;
  21.     fieldSize = 15;
  22. };
  23.  
  24. ObjectValues: WOString {
  25.     value = localObject;
  26. };
  27.  
  28. ToggleEditableButton: WOSubmitButton {
  29.     action = toggleEditable;
  30.     value = editableString;
  31. };
  32.  
  33. ShowSource: ShowSource {
  34.     componentName = "ObjectEditor";
  35. };
  36.  
  37. ShowSourceControls: ShowSource {
  38.     componentName = "ObjectEditor";
  39. }; 
  40.  
  41. ComponentDescription: ComponentDescription {
  42.     componentName = "ObjectEditor";
  43. };
  44.